home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / WAIS / next-ui / BrowserBarChart.h < prev    next >
Encoding:
Text File  |  1992-02-03  |  607 b   |  23 lines

  1. // BrowserBarChart.h
  2. //
  3. // Free software created 1 Feb 1992
  4. // by Paul Burchard <burchard@math.utah.edu>.
  5. //
  6. // Provides a scrolling list of strings with solid horizontal bars in 
  7. // NX_LISTMODE; i.e. its entries may be multiply selected in all the usual 
  8. // ways. See the BrowserPane class for details.
  9. //
  10. // The associated bar chart values are floats between 0.0 and 1.0, and are
  11. // set via the -setBarValue:at: method.
  12.  
  13. #import "BrowserPane.h"
  14.  
  15. @interface BrowserBarChart : BrowserPane
  16.  
  17. - initFrame:(const NXRect *)frameRect;
  18. - setBarValue:(float)aValue at:(int)row;
  19. - (float)barValueAt:(int)row;
  20.  
  21. @end
  22.  
  23.